home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / pipes.zip / CLIENT.DLG < prev    next >
Text File  |  1993-11-24  |  876b  |  26 lines

  1. /********************************************************\
  2. * client.dlg: Dialogs for client             *
  3. *                                                        *
  4. *                                                        *
  5. \********************************************************/
  6.  
  7.  
  8. 1 DLGINCLUDE "client.h"
  9.  
  10. AboutDlg DIALOG FIXED 6, 21, 198, 99
  11. #ifdef WIN32
  12. LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
  13. #endif
  14. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
  15. CAPTION "About Client"
  16. FONT 8, "MS Sans Serif"
  17. BEGIN
  18.     DEFPUSHBUTTON   "&OK", IDOK, 72, 74, 40, 14
  19.     LTEXT        "Client Application", 104, 45, 14,
  20.             128, 8
  21.     LTEXT           "By Julie Solon", 105, 45, 35, 59, 8
  22.     LTEXT           "Microsoft Developer Support", 106, 45, 45, 98, 8
  23.     LTEXT           "Copyright (c) 1993 Microsoft Corporation", 107, 45,
  24.             54, 138, 8
  25. END
  26.